home *** CD-ROM | disk | FTP | other *** search
- //-------------------------------------------
- // JavaScript Code for Navigator 4+ and Internet Explore 4+
- //---------------------------------------------
- // signe_browser=0: Navigator 4
- // signe_browser=1: Internet Explore 4
- // OPEN OBJECT MESSAGE: the Ultime replacement of ALT
- // ly: object message please define <P CLASS=MESSAGE> in your style
- // xpos: left position of object
- // ypos: top position of object
- // msgtxt: message that must be defined by client
- //-------------------------------------------------
-
- function open_message(signe_browser,ly,xpos,ypos,msgtxt){
- var txt1='<DIV ID=TXT><P CLASS=MESSAGE>';
- txt1 +=msgtxt;
- txt1 +='</P></DIV>';
- if (signe_browser==0){
- document[ly].left=xpos;
- document[ly].top=ypos;
- document[ly].document.open();
- document[ly].document.write(txt1);
- document[ly].document.close();
- document[ly].visibility="inherit";
- }
- if (signe_browser==1){
- document.all[ly].style.left=xpos;
- document.all[ly].style.top=ypos;
- document.all[ly].style.visibility="inherit";
- }
-
-
- }
- function close_message(signe_browser,ly){
- if (signe_browser==0) document[ly].visibility="hidden";
- if (signe_browser==1) document.all[ly].style.visibility="hidden";
-
- }
-
-
-